@charset "utf-8";
/* CSS Document */

/* Reset some basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 0 20px;
}

/* Header styles */
header {
  background-color: #001f3f;
  color: white;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .Logo {
  margin-left: 20px;
}

nav {
  margin-right: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00eaff;
}

/* Main content styling */
main {
  max-width: 1000px;
  margin: 40px auto;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

section {
  margin-bottom: 40px;
}

h1, h2 {
  color: #003366;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

p, li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Links */
a {
  color: #0074cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #001f3f;
  color: white;
  margin-top: 40px;
  border-top: 4px solid #00eaff;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f0f4f8;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* BUTTON STYLES */
.btn {
  display: inline-block;
  background-color: #00eaff;
  color: #003366;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #00c0d4;
  color: white;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003366;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  border-top: 5px solid #00eaff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #003366;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.service-card ul li {
  margin: 8px 0;
  color: #555;
}

/* CTA Section */
.cta {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta .btn {
  margin-top: 20px;
}
/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #00eaff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

